home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / CC_C / 1116.ZIP / TOOLKIT.ARC / WINDOW.C < prev    next >
Text File  |  1979-12-31  |  262b  |  18 lines

  1.  
  2. /* WINDOW.C */
  3.  
  4. #include window.h
  5. #include cursor.h
  6.  
  7. main()
  8.        {
  9.          window(5,20,20,60);  /* (topy,topx,bottomy,bottomx) */
  10.          cursor(10,24);
  11.          puts("window() function demonstration");
  12.          cursor(23,0);
  13.        }
  14.  
  15.  
  16.  
  17.  
  18.